home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / misc / jcgraph.lha / JCGRAPH / REXX / RotPreSet1.rex < prev    next >
Encoding:
OS/2 REXX Batch file  |  1993-11-03  |  328 b   |  14 lines

  1. /* RotPreSet1.rex */
  2. /* -------------- */
  3. /* Description: Will set the X,Y and Z rotation value previously set  */
  4. /*              with 'Set1' button.                                   */
  5.  
  6. options results
  7.  
  8. address 'JCGRAPH'
  9.  
  10. if open('Preset','T:RotPreset1','R') then do
  11.   Rotation=readln('Preset')
  12.   'SetRotation ' Rotation
  13. end
  14.